home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ IE Outlook Express 5.xpl < prev    next >
Text File  |  2001-05-14  |  2KB  |  65 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="3"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Outlook Express\Appearance"
  5. "NAME"="Change Welcome Page"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Path:"
  8. "DATA 1"="HTML Documents (*.htm;*.html)|*.htm;*.html|All Files (*.*)|*.*"
  9. "DESCRIPTION 1"="Here you can use your own, custom start page for Outlook Express instead of the default one. Just type in the path above."
  10. "DESCRIPTION 2"="If you want to use the default page, just clear the field."
  11. "VERSION"="1.02"
  12. "AUTHOR"="Neil R. Turner (totalxs@hotmail.com) for Xteq Systems"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "CONTACTURL"="http://www.128moorlane.freeserve.co.uk/"
  15.  
  16. 'Declaration of some constants
  17. sValPath=""
  18. sP1="HKCU\Software\Microsoft\Outlook Express\"
  19. sP2="HKCU\Identities\Last User ID"
  20. sVal="FrontPagePath"
  21.  
  22. 'Called when the Plugin is started
  23. SUB Plugin_Initialize
  24.  'OK, let's have a look if we are running IE5...
  25.  s=RegReadValue(sP2)
  26.  if IsEmpty(s)=false then
  27.   'OK - we have a value - check if we can find OE
  28.   sValPath="HKCU\Identities\" & s & "\Software\Microsoft\Outlook Express\5.0\"
  29.   If RegPathExists(sValPath) then
  30.    'OE5 !
  31.    sValPath=sValPath '& sValue
  32.   else
  33.    sValPath=sP1 '& sValue
  34.   end if 
  35.  else
  36.   sValPath=sP1 '& sValue
  37.  end if
  38.  
  39.  
  40.  i=RegReadValue(sValPath & sVal)
  41.  Call SetUIElement(1,i)
  42. END SUB
  43.  
  44. 'Called when the Plugin should validate the Data the user has entered
  45. SUB Plugin_CheckData(ElementIndex)
  46. END SUB
  47.  
  48. 'Called when the Plugin should apply the changes
  49. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  50.  s=GetUIElement(1)
  51.  if len(s)=0 then
  52.   'If values exists, delete it
  53.   s=RegValueExists(sValPath & sVal)
  54.   if s=true then
  55.    Call RegDeleteValue(sValPath & sVal)
  56.   end if
  57.  else
  58.   Call RegWriteValue(sValPath & sVal,s,1)
  59.  end if
  60. END SUB
  61.  
  62. 'Called when the Plugin is about to be removed from memory
  63. SUB Plugin_Terminate
  64. END SUB
  65.